@media screen and (min-width: 1028px) {
  main {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    position: relative;

  }

  main i {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20%;
    height: 20%;
  }

  main form {
    height: 50%;
    width: 30%;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 2% 6% 2% 6%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-style: double;
  }

  main form h1 {
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(35px + 0.7vw);
    font-weight: 500;
    color: rgb(0, 0, 0);
  }

  main form p {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    padding-left: 2%;
    font-size: calc(2px + 0.7vw);
    font-weight: 600;
  }

  main form input {
    border-radius: 100px;
    outline: none;
    border: 0;
  }

  main form .input-text {
    width: 100%;
    height: 12%;
    background-color: #ffffff;
    padding-left: 4%;
    caret-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: solid 2px black;
    font-size: calc(2px + 0.7vw);
  }

  main form .input-submit {
    margin-top: 12%;
    width: 50%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    background-color: #20c200;
    font-size: calc(10px + 0.7vw);
    color: white;
    cursor: pointer;
    font-weight: 600;
  }
}
